type context.cancelCtx

15 uses

	context (current package)
		context.go#L268: func withCancel(parent Context) *cancelCtx {
		context.go#L272: 	c := &cancelCtx{}
		context.go#L284: 	if cc, ok := c.Value(&cancelCtxKey).(*cancelCtx); ok {
		context.go#L332: 	cancelCtx
		context.go#L367: func parentCancelCtx(parent Context) (*cancelCtx, bool) {
		context.go#L372: 	p, ok := parent.Value(&cancelCtxKey).(*cancelCtx)
		context.go#L416: type cancelCtx struct {
		context.go#L426: func (c *cancelCtx) Value(key any) any {
		context.go#L433: func (c *cancelCtx) Done() <-chan struct{} {
		context.go#L448: func (c *cancelCtx) Err() error {
		context.go#L457: func (c *cancelCtx) propagateCancel(parent Context, child canceler) {
		context.go#L524: func (c *cancelCtx) String() string {
		context.go#L531: func (c *cancelCtx) cancel(removeFromParent bool, err, cause error) {
		context.go#L644: 	cancelCtx
		context.go#L762: 		case *cancelCtx: